projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5fe16cc
)
(custom-declare-variable-list): Process already-declared
author
Richard M. Stallman
<rms@gnu.org>
Sun, 20 Jul 1997 17:39:30 +0000
(17:39 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 20 Jul 1997 17:39:30 +0000
(17:39 +0000)
custom variables from this list.
lisp/custom.el
patch
|
blob
|
history
diff --git
a/lisp/custom.el
b/lisp/custom.el
index 1d93305c22e7fbe950638929d4923868fdb4af07..b56c5af3aaf979d071634a9774cf9d0dae0905b7 100644
(file)
--- a/
lisp/custom.el
+++ b/
lisp/custom.el
@@
-394,6
+394,11
@@
the default value for the SYMBOL."
;;; The End.
+;; Process the defcustoms for variables loaded before this file.
+(while custom-declare-variable-list
+ (apply 'custom-declare-variable (car custom-declare-variable-list))
+ (setq custom-declare-variable-list (cdr custom-declare-variable-list)))
+
(provide 'custom)
;; custom.el ends here